Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632822 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/70 - Transpose Matrix Calculator

style.css cody/swapnilsparsh/30DaysOfJavaScript/70 - Transpose Matrix Calculator/style.css
106 Views
0 Comments
@import url('https://fonts.googleapis.com/css2?family=Gideon+Roman&family=PT+Serif&display=swap');
*{
margin: 0;
padding: 0;
}
#body{
background-color: rgb(17 1 32);
}
index.html cody/swapnilsparsh/30DaysOfJavaScript/70 - Transpose Matrix Calculator/index.html
342 Views
0 Comments
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Transpose-Matrix Calculator</title>
script.js cody/swapnilsparsh/30DaysOfJavaScript/70 - Transpose Matrix Calculator/script.js
169 Views
0 Comments

button=document.getElementById('button');
button.addEventListener('click',e=>{
let ans=document.createElement('div');
document.getElementById('matrix').appendChild(ans);

const n=3;
let j=0;